home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Suzy B Software 2
/
Suzy B Software CD-ROM 2 (1994).iso
/
extras
/
programm
/
gemfsc19
/
gemfsc19.lzh
/
GEMFBIND
/
VGTEXT.S
< prev
next >
Wrap
Text File
|
1993-03-16
|
1KB
|
41 lines
;*========================================================================
;* VDIFAST Public Domain VDI bindings.
;*========================================================================
;*------------------------------------------------------------------------
;* Text.
;*------------------------------------------------------------------------
globl _v_gtext
_v_gtext:
; .cargs #8,handle.w,x.w,y.w,p_str.l
handle = 8
x = 10
y = 12
p_str = 14
link a6,#0
move.l p_str(a6),a0 ;* Get the string pointer.
jsr vstr_stack ;* Go integerize and stack string.
; VContrl #8,,#1,d0
move.w handle(a6),-(sp) ; contrl[6]
clr.l -(sp) ; contrl[5,4]
move.w d0,-(sp) ; contrl[3]
subq.l #2,sp ; contrl[2]
move.w #1,-(sp) ; contrl[1]
move.w #8,-(sp) ; contrl[0]
subq.l #8,sp ;* -> ptsout, intout
pea x(a6) ;* -> ptsin
move.l a0,-(sp) ;* -> intin
pea 16(sp) ;* -> contrl
jmp vdicall
end